From: chris@kneesaa.uk.xensource.com Date: Thu, 29 Jun 2006 19:28:21 +0000 (+0100) Subject: Fix build - _XEN_NETIF_EXTRA_FLAG_MORE not _XEN_NETIF_EXTRA_MORE X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15912^2~29 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=ea7dd990fa8e56bac107caf48da142668003e6c1;p=xen.git Fix build - _XEN_NETIF_EXTRA_FLAG_MORE not _XEN_NETIF_EXTRA_MORE Signed-off-by: Christian Limpach --- diff --git a/xen/include/public/io/netif.h b/xen/include/public/io/netif.h index 37aec7b7f6..39ca7b7461 100644 --- a/xen/include/public/io/netif.h +++ b/xen/include/public/io/netif.h @@ -62,7 +62,7 @@ typedef struct netif_tx_request netif_tx_request_t; /* netif_extra_info flags. */ #define _XEN_NETIF_EXTRA_FLAG_MORE (0) -#define XEN_NETIF_EXTRA_FLAG_MORE (1U<<_XEN_NETIF_EXTRA_MORE) +#define XEN_NETIF_EXTRA_FLAG_MORE (1U<<_XEN_NETIF_EXTRA_FLAG_MORE) /* GSO types - only TCPv4 currently supported. */ #define XEN_NETIF_GSO_TCPV4 (1)